home *** CD-ROM | disk | FTP | other *** search
- diff -u -r --new-file last-version/source/change-log samba-1.9.15p1/source/change-log
- --- last-version/source/change-log Tue Nov 14 23:17:02 1995
- +++ samba-1.9.15p1/source/change-log Wed Nov 15 02:36:30 1995
- @@ -1663,6 +1663,12 @@
- - updated INSTALL.txt
- - hopefully fixed server level security with WfWg
-
- +2.0.0:
- + - major/minor fix for solaris from Jeroen Schipper
- + <Jeroen.Schipper@let.ruu.nl>
- + - fixed critical bug in directory listings
- + - released p1
- +
-
- ==========
- todo:
- diff -u -r --new-file last-version/source/nameserv.c samba-1.9.15p1/source/nameserv.c
- --- last-version/source/nameserv.c Tue Nov 14 21:40:25 1995
- +++ samba-1.9.15p1/source/nameserv.c Wed Nov 15 01:28:08 1995
- @@ -962,8 +962,8 @@
- int update_count = CVAL(buf,0);
- int ttl = IVAL(buf,1)/1000;
- char *name = buf+5;
- - int major=CVAL(buf,21);
- - int minor=CVAL(buf,22);
- + int osmajor=CVAL(buf,21);
- + int osminor=CVAL(buf,22);
- uint32 servertype = IVAL(buf,23);
- char *comment = buf+31;
-
- @@ -971,7 +971,7 @@
- comment[43] = 0;
-
- DEBUG(3,("Announce(%d) %s count=%d ttl=%d OS=(%d,%d) type=%08x comment=%s\n",
- - command,name,update_count,ttl,major,minor,
- + command,name,update_count,ttl,osmajor,osminor,
- servertype,comment));
-
- if (strequal(dgram->source_name.name,myname)) return;
- diff -u -r --new-file last-version/source/util.c samba-1.9.15p1/source/util.c
- --- last-version/source/util.c Tue Nov 14 22:09:36 1995
- +++ samba-1.9.15p1/source/util.c Wed Nov 15 02:31:00 1995
- @@ -2828,6 +2828,10 @@
- }
- if(!*p && !*str)
- return True;
- +
- + if (!*p && str[0] == '.' && str[1] == 0)
- + return(True);
- +
- if (!*str && *p == '?')
- {
- while (*p == '?') p++;
- @@ -2845,7 +2849,7 @@
- * simplified regexp that takes * and ? only. Case can be
- * significant or not.
- *********************************************************/
- -BOOL mask_match(char *str, char *regexp, int case_sig, BOOL trans2)
- +BOOL mask_match(char *str, char *regexp, int case_sig,BOOL trans2)
- {
- char *p;
- pstring p1, p2;
- @@ -2856,6 +2860,16 @@
- /* Make local copies of str and regexp */
- StrnCpy(p1,regexp,sizeof(pstring)-1);
- StrnCpy(p2,str,sizeof(pstring)-1);
- +
- + if (!strchr(p2,'.')) {
- + strcat(p2,".");
- + }
- +
- +/*
- + if (!strchr(p1,'.')) {
- + strcat(p1,".");
- + }
- +*/
-
- #if 0
- if (strchr(p1,'.'))
- diff -u -r --new-file last-version/source/version.h samba-1.9.15p1/source/version.h
- --- last-version/source/version.h Wed Nov 15 00:11:42 1995
- +++ samba-1.9.15p1/source/version.h Wed Nov 15 02:36:44 1995
- @@ -1 +1 @@
- -#define VERSION "1.9.15"
- +#define VERSION "1.9.15p1"
-